home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 21 / macformat_21.iso / Shareware / Comunicación / MacWebCam 2.1 / SampleScripts / Fetch 3.0.1 script < prev    next >
Text File  |  1996-08-07  |  919b  |  18 lines

  1. -- A post-process script to FTP the last image (Image.jpg) to a remote location.  
  2. -- This script uses a two step process to minimize the time that a image is unavailable to the http server.
  3. -- Any attept to FTP an image from the Mac to a remote http server could result in errors due to read/write contention.  
  4. -- Use at your own risk!
  5. -- You may want to turn off Fetch's Misc. Preference of "Show Sign-on Dialog at Startup"
  6.  
  7. -- To use:
  8. -- Change the host, userID, password, and file names as needed.
  9.  
  10. tell application "Fetch 3.0.1"
  11.     if (not (exists window "ftp.your_host.com")) then
  12.         make new transfer window at beginning with properties {hostname:"ftp.your_host.com", userid:"your_user_name", password:"your_password"}
  13.     end if
  14.     put into transfer window "ftp.your_host.com" item alias "hd:WebCam:Image.jpg" text format Raw Data binary format Raw Data
  15.     set name of remote file "Image.jpg" to "current.jpg"
  16. end tell
  17.  
  18.